/* CSS for the https://nepa.navy.afpims.mil/nwtteis/ website */
.nwtteis-button-box {
border: 1px solid #e0e0e0; /* A thin, light gray border */
border-radius: 15px;      /* Keeps the rounded corners */
padding: 25px;            /* Spacing inside the box */
max-width: 400px;         /* Sets a maximum width for the box */
margin: 20px auto;        /* Centers the box on the page */
text-align: center;       /* Centers all the content inside */
}

/* Optional text style if you want to add a message */
.nwtteis-button-text {
  margin-bottom: 20px;
  color: #333;
  font-family: 'Segoe UI', 'Roboto', 'Helvetica Neue', Arial, sans-serif;
}

/* The link that wraps the button */
.nwtteis-button-link {
  display: inline-block; /* Changed to inline-block for better centering inside the box */
  text-decoration: none;
  max-width: 300px;
  width: 100%;
}

/* The main subscribe button */
.nwtteis-button {
  width: 100%;
  padding: 15px 30px;
  border: none;
  border-radius: 50px;
  cursor: pointer;
  font-family: 'Segoe UI', 'Roboto', 'Helvetica Neue', Arial, sans-serif;
  font-size: 1.1em;
  font-weight: 700;
  color: #ffffff;
  text-transform: uppercase;
  letter-spacing: 1px;
  outline: none;
  /* Softer muted green gradient background */
  background: linear-gradient(135deg, #6c8c7d 0%, #4a6a57 100%);
  box-shadow: 0 8px 15px rgba(0, 0, 0, 0.2);
  transition: all 0.3s ease;
}

.nwtteis-button:hover {
  background: linear-gradient(135deg, #4a6a57 0%, #6c8c7d 100%);
  box-shadow: 0 15px 20px rgba(0, 0, 0, 0.3);
  transform: translateY(-3px);
}

.nwtteis-button:active {
  transform: translateY(0);
  box-shadow: 0 5px 10px rgba(0, 0, 0, 0.2);
}

/* Responsive adjustments for different screen sizes */
@media (max-width: 768px) {
  .nwtteis-button-text {
	  font-size: 1.3em;
  }
  .nwtteis-button {
	  padding: 12px 25px;
	  font-size: 1em;
  }
}

@media (max-width: 480px) {
	.nwtteis-button-box {
		padding: 20px;
	}
	.nwtteis-button-text {
		font-size: 1.1em;
	}
	.nwtteis-button {
		padding: 10px 20px;
		font-size: 0.9em;
		border-radius: 40px;
	}
}
